int i = 4;
float f = 3.0;
int a = i/f; // ERROR! Assigning a float value to an int variable
float b = i/f; // Assign 1.3333334 to b
